home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Resources / Developer & Web Development Tools / Inno Setup 5.2.3 / isetup-5.2.3.exe / {app} / Examples / MyDll / C / MyDll.c next >
C/C++ Source or Header  |  2003-04-13  |  155b  |  6 lines

  1. #include <windows.h>
  2.  
  3. void __stdcall MyDllFunc(HWND hWnd, char *lpText, char *lpCaption, UINT uType)
  4. {
  5.   MessageBox(hWnd, lpText, lpCaption, uType);
  6. }